home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / SP-ProjectMan / Rexx / show.sman < prev   
Text File  |  1997-12-26  |  417b  |  22 lines

  1. /*
  2.  - show.sman
  3.  -
  4.  - ARexx program to display the content of a file.
  5.  - The display tool depends of the file extension.
  6.  - The tool is launched asynchronously.
  7.  -
  8.  - © Copyright 1995-1996 Bernard Krummenacher Silicon-Peace
  9.  -
  10.  - Bernard Krummenacher    Silicon-Peace 95.04.11    Created this file.
  11. */
  12.  
  13. parse arg FileName
  14.  
  15. options results
  16.  
  17. say FileName
  18.  
  19. address COMMAND 'run multiview >NIL: <NIL:' '"'FileName'"'
  20.  
  21. return 0
  22.